home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / haeberli / include / mesh.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  62 lines

  1. /*
  2.  * Copyright 1991, 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #ifndef MESHDEF
  18. #define MESHDEF
  19.  
  20. typedef struct Meshobj {
  21.     int            connectcount;
  22.     int            independentcount;
  23.     int            npolys;
  24.     int            vertcount;
  25.     int            vertno;
  26.     struct Edge *    edgearray;
  27.     struct Edge *    freeedges;
  28.     struct Edge **    edgehashlist;
  29.     struct Tri *    curtri;
  30.     struct Tri **    trihashlist;
  31.     struct Trilist *    adjtrilist[4];
  32.     struct Trilist *    donetrilist;
  33.     struct Trilist *    newtrilist;
  34.     struct Trilist *    trilist;
  35.     struct Vert *    tmpvert;
  36.     struct Vert **    verthashlist;
  37.     struct Vertlist *    vertlist;
  38.     void        (*ambegin)( int, int );
  39.     void        (*amend)( void );
  40.     int            (*amhashvert)( long );
  41.     int            (*amvertsame)( long, long );
  42.     void        (*amvertdata)( long );
  43.     void        (*ambgntmesh)( void );
  44.     void        (*amendtmesh)( void );
  45.     void        (*amswaptmesh)( void );
  46.     void        (*amvert)( long );
  47. } Meshobj;
  48.  
  49. extern    Meshobj *     newMeshobj ( 
  50.     void (*)( int, int ), void (*)( void ),
  51.     int     (*)( long ),     int  (*)( long, long ),
  52.     void (*)( long ),     void (*)( void ),
  53.     void (*)( void ),     void (*)( void ),
  54.     void (*)( long ) );
  55. extern    void        freeMeshobj( Meshobj * );
  56. extern    void        in_ambegin( Meshobj * );
  57. extern    void        in_amnewtri( Meshobj * );
  58. extern    void        in_amvert( Meshobj *, long );
  59. extern    void        in_amend( Meshobj * );
  60.  
  61. #endif
  62.